home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / php / extras / mibs / EtherLike-MIB.txt < prev    next >
Text File  |  2005-03-30  |  51KB  |  1,138 lines

  1. EtherLike-MIB DEFINITIONS ::= BEGIN
  2.  
  3.     IMPORTS
  4.         MODULE-IDENTITY, OBJECT-TYPE, OBJECT-IDENTITY,
  5.         Counter32, mib-2, transmission
  6.             FROM SNMPv2-SMI
  7.         MODULE-COMPLIANCE, OBJECT-GROUP
  8.             FROM SNMPv2-CONF
  9.         ifIndex, InterfaceIndex
  10.             FROM IF-MIB;
  11.  
  12.     etherMIB MODULE-IDENTITY
  13.         LAST-UPDATED "9908240400Z"  -- August 24, 1999
  14.         ORGANIZATION "IETF Ethernet Interfaces and Hub MIB
  15.                      Working Group"
  16.         CONTACT-INFO
  17.             "WG E-mail: hubmib@hprnd.rose.hp.com
  18.           To subscribe: hubmib-request@hprnd.rose.hp.com
  19.  
  20.                  Chair: Dan Romascanu
  21.                 Postal: Lucent Technologies
  22.                         Atidum Technology Park, Bldg. 3
  23.                         Tel Aviv 61131
  24.                         Israel
  25.                    Tel: +972 3 645 8414
  26.                 E-mail: dromasca@lucent.com
  27.  
  28.                Editor: John Flick
  29.                Postal: Hewlett-Packard Company
  30.                        8000 Foothills Blvd. M/S 5557
  31.                        Roseville, CA 95747-5557
  32.                        USA
  33.                   Tel: +1 916 785 4018
  34.                   Fax: +1 916 785 1199
  35.                E-mail: johnf@rose.hp.com
  36.  
  37.                Editor: Jeffrey Johnson
  38.                Postal: RedBack Networks
  39.                        2570 North First Street, Suite 410
  40.                        San Jose, CA, 95131
  41.                        USA
  42.                   Tel: +1 408 571 2699
  43.                   Fax: +1 408 571 2698
  44.                E-Mail: jeff@redbacknetworks.com"
  45.         DESCRIPTION "The MIB module to describe generic objects for
  46.  
  47.                     Ethernet-like network interfaces.
  48.  
  49.                     The following reference is used throughout this
  50.                     MIB module:
  51.  
  52.                     [IEEE 802.3 Std] refers to:
  53.                        IEEE Std 802.3, 1998 Edition: 'Information
  54.                        technology - Telecommunications and
  55.                        information exchange between systems -
  56.                        Local and metropolitan area networks -
  57.                        Specific requirements - Part 3: Carrier
  58.                        sense multiple access with collision
  59.                        detection (CSMA/CD) access method and
  60.                        physical layer specifications',
  61.                        September 1998.
  62.  
  63.                     Of particular interest is Clause 30, '10Mb/s,
  64.                     100Mb/s and 1000Mb/s Management'."
  65.  
  66.         REVISION    "9908240400Z"  -- August 24, 1999
  67.         DESCRIPTION "Updated to include support for 1000 Mb/sec
  68.                      interfaces and full-duplex interfaces.
  69.                      This version published as RFC 2665."
  70.  
  71.         REVISION    "9806032150Z"
  72.         DESCRIPTION "Updated to include support for 100 Mb/sec
  73.                      interfaces.
  74.                      This version published as RFC 2358."
  75.  
  76.         REVISION    "9402030400Z"
  77.         DESCRIPTION "Initial version, published as RFC 1650."
  78.         ::= { mib-2 35 }
  79.  
  80.     etherMIBObjects OBJECT IDENTIFIER ::= { etherMIB 1 }
  81.  
  82.     dot3    OBJECT IDENTIFIER ::= { transmission 7 }
  83.  
  84.     -- the Ethernet-like Statistics group
  85.  
  86.     dot3StatsTable OBJECT-TYPE
  87.         SYNTAX     SEQUENCE OF Dot3StatsEntry
  88.         MAX-ACCESS not-accessible
  89.         STATUS     current
  90.         DESCRIPTION "Statistics for a collection of ethernet-like
  91.                     interfaces attached to a particular system.
  92.                     There will be one row in this table for each
  93.  
  94.                     ethernet-like interface in the system."
  95.         ::= { dot3 2 }
  96.  
  97.     dot3StatsEntry OBJECT-TYPE
  98.         SYNTAX     Dot3StatsEntry
  99.         MAX-ACCESS not-accessible
  100.         STATUS     current
  101.         DESCRIPTION "Statistics for a particular interface to an
  102.                     ethernet-like medium."
  103.         INDEX       { dot3StatsIndex }
  104.         ::= { dot3StatsTable 1 }
  105.  
  106.     Dot3StatsEntry ::=
  107.         SEQUENCE {
  108.             dot3StatsIndex                      InterfaceIndex,
  109.             dot3StatsAlignmentErrors            Counter32,
  110.             dot3StatsFCSErrors                  Counter32,
  111.             dot3StatsSingleCollisionFrames      Counter32,
  112.             dot3StatsMultipleCollisionFrames    Counter32,
  113.             dot3StatsSQETestErrors              Counter32,
  114.             dot3StatsDeferredTransmissions      Counter32,
  115.             dot3StatsLateCollisions             Counter32,
  116.             dot3StatsExcessiveCollisions        Counter32,
  117.             dot3StatsInternalMacTransmitErrors  Counter32,
  118.             dot3StatsCarrierSenseErrors         Counter32,
  119.             dot3StatsFrameTooLongs              Counter32,
  120.             dot3StatsInternalMacReceiveErrors   Counter32,
  121.             dot3StatsEtherChipSet               OBJECT IDENTIFIER,
  122.             dot3StatsSymbolErrors               Counter32,
  123.             dot3StatsDuplexStatus               INTEGER
  124.         }
  125.  
  126.     dot3StatsIndex OBJECT-TYPE
  127.         SYNTAX      InterfaceIndex
  128.         MAX-ACCESS  read-only
  129.         STATUS      current
  130.         DESCRIPTION "An index value that uniquely identifies an
  131.                     interface to an ethernet-like medium.  The
  132.                     interface identified by a particular value of
  133.                     this index is the same interface as identified
  134.                     by the same value of ifIndex."
  135.         REFERENCE   "RFC 2233, ifIndex"
  136.         ::= { dot3StatsEntry 1 }
  137.  
  138.     dot3StatsAlignmentErrors OBJECT-TYPE
  139.         SYNTAX      Counter32
  140.         MAX-ACCESS  read-only
  141.         STATUS      current
  142.         DESCRIPTION "A count of frames received on a particular
  143.                     interface that are not an integral number of
  144.                     octets in length and do not pass the FCS check.
  145.  
  146.                     The count represented by an instance of this
  147.                     object is incremented when the alignmentError
  148.                     status is returned by the MAC service to the
  149.                     LLC (or other MAC user). Received frames for
  150.                     which multiple error conditions obtain are,
  151.                     according to the conventions of IEEE 802.3
  152.                     Layer Management, counted exclusively according
  153.                     to the error status presented to the LLC.
  154.  
  155.                     This counter does not increment for 8-bit wide
  156.                     group encoding schemes.
  157.  
  158.                     Discontinuities in the value of this counter can
  159.                     occur at re-initialization of the management
  160.                     system, and at other times as indicated by the
  161.                     value of ifCounterDiscontinuityTime."
  162.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.7,
  163.                     aAlignmentErrors"
  164.         ::= { dot3StatsEntry 2 }
  165.  
  166.     dot3StatsFCSErrors OBJECT-TYPE
  167.         SYNTAX      Counter32
  168.         MAX-ACCESS  read-only
  169.         STATUS      current
  170.         DESCRIPTION "A count of frames received on a particular
  171.                     interface that are an integral number of octets
  172.                     in length but do not pass the FCS check.  This
  173.                     count does not include frames received with
  174.                     frame-too-long or frame-too-short error.
  175.  
  176.                     The count represented by an instance of this
  177.                     object is incremented when the frameCheckError
  178.                     status is returned by the MAC service to the
  179.                     LLC (or other MAC user). Received frames for
  180.                     which multiple error conditions obtain are,
  181.                     according to the conventions of IEEE 802.3
  182.                     Layer Management, counted exclusively according
  183.                     to the error status presented to the LLC.
  184.  
  185.                     Note:  Coding errors detected by the physical
  186.                     layer for speeds above 10 Mb/s will cause the
  187.                     frame to fail the FCS check.
  188.                     Discontinuities in the value of this counter can
  189.                     occur at re-initialization of the management
  190.  
  191.                     system, and at other times as indicated by the
  192.                     value of ifCounterDiscontinuityTime."
  193.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.6,
  194.                     aFrameCheckSequenceErrors."
  195.         ::= { dot3StatsEntry 3 }
  196.  
  197.     dot3StatsSingleCollisionFrames OBJECT-TYPE
  198.         SYNTAX      Counter32
  199.         MAX-ACCESS  read-only
  200.         STATUS      current
  201.         DESCRIPTION "A count of successfully transmitted frames on
  202.                     a particular interface for which transmission
  203.                     is inhibited by exactly one collision.
  204.  
  205.                     A frame that is counted by an instance of this
  206.                     object is also counted by the corresponding
  207.                     instance of either the ifOutUcastPkts,
  208.                     ifOutMulticastPkts, or ifOutBroadcastPkts,
  209.                     and is not counted by the corresponding
  210.                     instance of the dot3StatsMultipleCollisionFrames
  211.                     object.
  212.  
  213.                     This counter does not increment when the
  214.                     interface is operating in full-duplex mode.
  215.  
  216.                     Discontinuities in the value of this counter can
  217.                     occur at re-initialization of the management
  218.                     system, and at other times as indicated by the
  219.                     value of ifCounterDiscontinuityTime."
  220.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.3,
  221.                     aSingleCollisionFrames."
  222.         ::= { dot3StatsEntry 4 }
  223.  
  224.     dot3StatsMultipleCollisionFrames OBJECT-TYPE
  225.         SYNTAX      Counter32
  226.         MAX-ACCESS  read-only
  227.         STATUS      current
  228.         DESCRIPTION "A count of successfully transmitted frames on
  229.                     a particular interface for which transmission
  230.                     is inhibited by more than one collision.
  231.  
  232.                     A frame that is counted by an instance of this
  233.                     object is also counted by the corresponding
  234.                     instance of either the ifOutUcastPkts,
  235.                     ifOutMulticastPkts, or ifOutBroadcastPkts,
  236.                     and is not counted by the corresponding
  237.                     instance of the dot3StatsSingleCollisionFrames
  238.                     object.
  239.  
  240.                     This counter does not increment when the
  241.                     interface is operating in full-duplex mode.
  242.  
  243.                     Discontinuities in the value of this counter can
  244.                     occur at re-initialization of the management
  245.                     system, and at other times as indicated by the
  246.                     value of ifCounterDiscontinuityTime."
  247.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.4,
  248.                     aMultipleCollisionFrames."
  249.         ::= { dot3StatsEntry 5 }
  250.  
  251.     dot3StatsSQETestErrors OBJECT-TYPE
  252.         SYNTAX      Counter32
  253.         MAX-ACCESS  read-only
  254.         STATUS      current
  255.         DESCRIPTION "A count of times that the SQE TEST ERROR
  256.                     message is generated by the PLS sublayer for a
  257.                     particular interface. The SQE TEST ERROR
  258.                     is set in accordance with the rules for
  259.                     verification of the SQE detection mechanism in
  260.                     the PLS Carrier Sense Function as described in
  261.                     IEEE Std. 802.3, 1998 Edition, section 7.2.4.6.
  262.  
  263.                     This counter does not increment on interfaces
  264.                     operating at speeds greater than 10 Mb/s, or on
  265.                     interfaces operating in full-duplex mode.
  266.  
  267.                     Discontinuities in the value of this counter can
  268.                     occur at re-initialization of the management
  269.                     system, and at other times as indicated by the
  270.                     value of ifCounterDiscontinuityTime."
  271.         REFERENCE   "[IEEE 802.3 Std.], 7.2.4.6, also 30.3.2.1.4,
  272.                     aSQETestErrors."
  273.         ::= { dot3StatsEntry 6 }
  274.  
  275.     dot3StatsDeferredTransmissions OBJECT-TYPE
  276.         SYNTAX      Counter32
  277.         MAX-ACCESS  read-only
  278.         STATUS      current
  279.         DESCRIPTION "A count of frames for which the first
  280.                     transmission attempt on a particular interface
  281.                     is delayed because the medium is busy.
  282.                     The count represented by an instance of this
  283.                     object does not include frames involved in
  284.                     collisions.
  285.  
  286.                     This counter does not increment when the
  287.                     interface is operating in full-duplex mode.
  288.  
  289.                     Discontinuities in the value of this counter can
  290.                     occur at re-initialization of the management
  291.                     system, and at other times as indicated by the
  292.                     value of ifCounterDiscontinuityTime."
  293.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.9,
  294.                     aFramesWithDeferredXmissions."
  295.         ::= { dot3StatsEntry 7 }
  296.  
  297.     dot3StatsLateCollisions OBJECT-TYPE
  298.         SYNTAX      Counter32
  299.         MAX-ACCESS  read-only
  300.         STATUS      current
  301.         DESCRIPTION "The number of times that a collision is
  302.                     detected on a particular interface later than
  303.                     one slotTime into the transmission of a packet.
  304.  
  305.                     A (late) collision included in a count
  306.                     represented by an instance of this object is
  307.                     also considered as a (generic) collision for
  308.                     purposes of other collision-related
  309.                     statistics.
  310.  
  311.                     This counter does not increment when the
  312.                     interface is operating in full-duplex mode.
  313.  
  314.                     Discontinuities in the value of this counter can
  315.                     occur at re-initialization of the management
  316.                     system, and at other times as indicated by the
  317.                     value of ifCounterDiscontinuityTime."
  318.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.10,
  319.                     aLateCollisions."
  320.         ::= { dot3StatsEntry 8 }
  321.  
  322.     dot3StatsExcessiveCollisions OBJECT-TYPE
  323.         SYNTAX      Counter32
  324.         MAX-ACCESS  read-only
  325.         STATUS      current
  326.         DESCRIPTION "A count of frames for which transmission on a
  327.                     particular interface fails due to excessive
  328.                     collisions.
  329.                     This counter does not increment when the
  330.                     interface is operating in full-duplex mode.
  331.  
  332.                     Discontinuities in the value of this counter can
  333.                     occur at re-initialization of the management
  334.                     system, and at other times as indicated by the
  335.                     value of ifCounterDiscontinuityTime."
  336.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.11,
  337.                     aFramesAbortedDueToXSColls."
  338.         ::= { dot3StatsEntry 9 }
  339.  
  340.     dot3StatsInternalMacTransmitErrors OBJECT-TYPE
  341.         SYNTAX      Counter32
  342.         MAX-ACCESS  read-only
  343.         STATUS      current
  344.         DESCRIPTION "A count of frames for which transmission on a
  345.                     particular interface fails due to an internal
  346.                     MAC sublayer transmit error. A frame is only
  347.                     counted by an instance of this object if it is
  348.                     not counted by the corresponding instance of
  349.                     either the dot3StatsLateCollisions object, the
  350.                     dot3StatsExcessiveCollisions object, or the
  351.                     dot3StatsCarrierSenseErrors object.
  352.  
  353.                     The precise meaning of the count represented by
  354.                     an instance of this object is implementation-
  355.                     specific.  In particular, an instance of this
  356.                     object may represent a count of transmission
  357.                     errors on a particular interface that are not
  358.                     otherwise counted.
  359.  
  360.                     Discontinuities in the value of this counter can
  361.                     occur at re-initialization of the management
  362.                     system, and at other times as indicated by the
  363.                     value of ifCounterDiscontinuityTime."
  364.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.12,
  365.                     aFramesLostDueToIntMACXmitError."
  366.         ::= { dot3StatsEntry 10 }
  367.  
  368.     dot3StatsCarrierSenseErrors OBJECT-TYPE
  369.         SYNTAX      Counter32
  370.         MAX-ACCESS  read-only
  371.         STATUS      current
  372.         DESCRIPTION "The number of times that the carrier sense
  373.                     condition was lost or never asserted when
  374.                     attempting to transmit a frame on a particular
  375.                     interface.
  376.  
  377.                     The count represented by an instance of this
  378.                     object is incremented at most once per
  379.                     transmission attempt, even if the carrier sense
  380.                     condition fluctuates during a transmission
  381.                     attempt.
  382.  
  383.                     This counter does not increment when the
  384.                     interface is operating in full-duplex mode.
  385.  
  386.                     Discontinuities in the value of this counter can
  387.                     occur at re-initialization of the management
  388.                     system, and at other times as indicated by the
  389.                     value of ifCounterDiscontinuityTime."
  390.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.13,
  391.                     aCarrierSenseErrors."
  392.         ::= { dot3StatsEntry 11 }
  393.  
  394.     -- { dot3StatsEntry 12 } is not assigned
  395.  
  396.     dot3StatsFrameTooLongs OBJECT-TYPE
  397.         SYNTAX      Counter32
  398.         MAX-ACCESS  read-only
  399.         STATUS      current
  400.         DESCRIPTION "A count of frames received on a particular
  401.                     interface that exceed the maximum permitted
  402.                     frame size.
  403.  
  404.                     The count represented by an instance of this
  405.                     object is incremented when the frameTooLong
  406.                     status is returned by the MAC service to the
  407.                     LLC (or other MAC user). Received frames for
  408.                     which multiple error conditions obtain are,
  409.                     according to the conventions of IEEE 802.3
  410.                     Layer Management, counted exclusively according
  411.                     to the error status presented to the LLC.
  412.  
  413.                     Discontinuities in the value of this counter can
  414.                     occur at re-initialization of the management
  415.                     system, and at other times as indicated by the
  416.                     value of ifCounterDiscontinuityTime."
  417.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.25,
  418.                     aFrameTooLongErrors."
  419.         ::= { dot3StatsEntry 13 }
  420.  
  421.     -- { dot3StatsEntry 14 } is not assigned
  422.  
  423.     -- { dot3StatsEntry 15 } is not assigned
  424.  
  425.     dot3StatsInternalMacReceiveErrors OBJECT-TYPE
  426.         SYNTAX      Counter32
  427.         MAX-ACCESS  read-only
  428.         STATUS      current
  429.         DESCRIPTION "A count of frames for which reception on a
  430.                     particular interface fails due to an internal
  431.                     MAC sublayer receive error. A frame is only
  432.                     counted by an instance of this object if it is
  433.                     not counted by the corresponding instance of
  434.  
  435.                     either the dot3StatsFrameTooLongs object, the
  436.                     dot3StatsAlignmentErrors object, or the
  437.                     dot3StatsFCSErrors object.
  438.  
  439.                     The precise meaning of the count represented by
  440.                     an instance of this object is implementation-
  441.                     specific.  In particular, an instance of this
  442.                     object may represent a count of receive errors
  443.                     on a particular interface that are not
  444.                     otherwise counted.
  445.  
  446.                     Discontinuities in the value of this counter can
  447.                     occur at re-initialization of the management
  448.                     system, and at other times as indicated by the
  449.                     value of ifCounterDiscontinuityTime."
  450.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.15,
  451.                     aFramesLostDueToIntMACRcvError."
  452.         ::= { dot3StatsEntry 16 }
  453.  
  454.     dot3StatsEtherChipSet OBJECT-TYPE
  455.         SYNTAX      OBJECT IDENTIFIER
  456.         MAX-ACCESS  read-only
  457.         STATUS      deprecated
  458.         DESCRIPTION "******** THIS OBJECT IS DEPRECATED ********
  459.  
  460.                     This object contains an OBJECT IDENTIFIER
  461.                     which identifies the chipset used to
  462.                     realize the interface. Ethernet-like
  463.                     interfaces are typically built out of
  464.                     several different chips. The MIB implementor
  465.                     is presented with a decision of which chip
  466.                     to identify via this object. The implementor
  467.                     should identify the chip which is usually
  468.                     called the Medium Access Control chip.
  469.                     If no such chip is easily identifiable,
  470.                     the implementor should identify the chip
  471.                     which actually gathers the transmit
  472.                     and receive statistics and error
  473.                     indications. This would allow a
  474.                     manager station to correlate the
  475.                     statistics and the chip generating
  476.                     them, giving it the ability to take
  477.                     into account any known anomalies
  478.                     in the chip."
  479.         ::= { dot3StatsEntry 17 }
  480.  
  481.     dot3StatsSymbolErrors OBJECT-TYPE
  482.         SYNTAX      Counter32
  483.         MAX-ACCESS  read-only
  484.         STATUS      current
  485.         DESCRIPTION "For an interface operating at 100 Mb/s, the
  486.                     number of times there was an invalid data symbol
  487.                     when a valid carrier was present.
  488.  
  489.                     For an interface operating in half-duplex mode
  490.                     at 1000 Mb/s, the number of times the receiving
  491.                     media is non-idle (a carrier event) for a period
  492.                     of time equal to or greater than slotTime, and
  493.                     during which there was at least one occurrence
  494.                     of an event that causes the PHY to indicate
  495.                     'Data reception error' or 'carrier extend error'
  496.                     on the GMII.
  497.  
  498.                     For an interface operating in full-duplex mode
  499.                     at 1000 Mb/s, the number of times the receiving
  500.                     media is non-idle a carrier event) for a period
  501.                     of time equal to or greater than minFrameSize,
  502.                     and during which there was at least one
  503.                     occurrence of an event that causes the PHY to
  504.                     indicate 'Data reception error' on the GMII.
  505.  
  506.                     The count represented by an instance of this
  507.                     object is incremented at most once per carrier
  508.                     event, even if multiple symbol errors occur
  509.                     during the carrier event.  This count does
  510.                     not increment if a collision is present.
  511.  
  512.                     Discontinuities in the value of this counter can
  513.                     occur at re-initialization of the management
  514.                     system, and at other times as indicated by the
  515.                     value of ifCounterDiscontinuityTime."
  516.         REFERENCE   "[IEEE 802.3 Std.], 30.3.2.1.5,
  517.                     aSymbolErrorDuringCarrier."
  518.         ::= { dot3StatsEntry 18 }
  519.  
  520.     dot3StatsDuplexStatus OBJECT-TYPE
  521.         SYNTAX      INTEGER {
  522.                         unknown(1),
  523.                         halfDuplex(2),
  524.                         fullDuplex(3)
  525.                     }
  526.         MAX-ACCESS  read-only
  527.         STATUS      current
  528.         DESCRIPTION "The current mode of operation of the MAC
  529.                     entity.  'unknown' indicates that the current
  530.                     duplex mode could not be determined.
  531.  
  532.                     Management control of the duplex mode is
  533.                     accomplished through the MAU MIB.  When
  534.                     an interface does not support autonegotiation,
  535.                     or when autonegotiation is not enabled, the
  536.                     duplex mode is controlled using
  537.                     ifMauDefaultType.  When autonegotiation is
  538.                     supported and enabled, duplex mode is controlled
  539.                     using ifMauAutoNegAdvertisedBits.  In either
  540.                     case, the currently operating duplex mode is
  541.                     reflected both in this object and in ifMauType.
  542.  
  543.                     Note that this object provides redundant
  544.                     information with ifMauType.  Normally, redundant
  545.                     objects are discouraged.  However, in this
  546.                     instance, it allows a management application to
  547.                     determine the duplex status of an interface
  548.                     without having to know every possible value of
  549.                     ifMauType.  This was felt to be sufficiently
  550.                     valuable to justify the redundancy."
  551.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.32,
  552.                     aDuplexStatus."
  553.         ::= { dot3StatsEntry 19 }
  554.  
  555.     -- the Ethernet-like Collision Statistics group
  556.  
  557.     -- Implementation of this group is optional; it is appropriate
  558.     -- for all systems which have the necessary metering
  559.  
  560.     dot3CollTable OBJECT-TYPE
  561.         SYNTAX      SEQUENCE OF Dot3CollEntry
  562.         MAX-ACCESS  not-accessible
  563.         STATUS      current
  564.         DESCRIPTION "A collection of collision histograms for a
  565.                     particular set of interfaces."
  566.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.30,
  567.                     aCollisionFrames."
  568.         ::= { dot3 5 }
  569.  
  570.     dot3CollEntry OBJECT-TYPE
  571.         SYNTAX      Dot3CollEntry
  572.         MAX-ACCESS  not-accessible
  573.         STATUS      current
  574.         DESCRIPTION "A cell in the histogram of per-frame
  575.                     collisions for a particular interface.  An
  576.                     instance of this object represents the
  577.                     frequency of individual MAC frames for which
  578.                     the transmission (successful or otherwise) on a
  579.                     particular interface is accompanied by a
  580.  
  581.                     particular number of media collisions."
  582.         INDEX       { ifIndex, dot3CollCount }
  583.         ::= { dot3CollTable 1 }
  584.  
  585.     Dot3CollEntry ::=
  586.         SEQUENCE {
  587.             dot3CollCount        INTEGER,
  588.             dot3CollFrequencies  Counter32
  589.         }
  590.  
  591.     -- { dot3CollEntry 1 } is no longer in use
  592.  
  593.     dot3CollCount OBJECT-TYPE
  594.         SYNTAX      INTEGER (1..16)
  595.         MAX-ACCESS  not-accessible
  596.         STATUS      current
  597.         DESCRIPTION "The number of per-frame media collisions for
  598.                     which a particular collision histogram cell
  599.                     represents the frequency on a particular
  600.                     interface."
  601.         ::= { dot3CollEntry 2 }
  602.  
  603.     dot3CollFrequencies OBJECT-TYPE
  604.         SYNTAX      Counter32
  605.         MAX-ACCESS  read-only
  606.         STATUS      current
  607.         DESCRIPTION "A count of individual MAC frames for which the
  608.                     transmission (successful or otherwise) on a
  609.                     particular interface occurs after the
  610.                     frame has experienced exactly the number
  611.                     of collisions in the associated
  612.                     dot3CollCount object.
  613.  
  614.                     For example, a frame which is transmitted
  615.                     on interface 77 after experiencing
  616.                     exactly 4 collisions would be indicated
  617.                     by incrementing only dot3CollFrequencies.77.4.
  618.                     No other instance of dot3CollFrequencies would
  619.                     be incremented in this example.
  620.  
  621.                     This counter does not increment when the
  622.                     interface is operating in full-duplex mode.
  623.  
  624.                     Discontinuities in the value of this counter can
  625.                     occur at re-initialization of the management
  626.                     system, and at other times as indicated by the
  627.                     value of ifCounterDiscontinuityTime."
  628.         ::= { dot3CollEntry 3 }
  629.  
  630.     dot3ControlTable OBJECT-TYPE
  631.         SYNTAX      SEQUENCE OF Dot3ControlEntry
  632.         MAX-ACCESS  not-accessible
  633.         STATUS      current
  634.         DESCRIPTION "A table of descriptive and status information
  635.                     about the MAC Control sublayer on the
  636.                     ethernet-like interfaces attached to a
  637.                     particular system.  There will be one row in
  638.                     this table for each ethernet-like interface in
  639.                     the system which implements the MAC Control
  640.                     sublayer.  If some, but not all, of the
  641.                     ethernet-like interfaces in the system implement
  642.                     the MAC Control sublayer, there will be fewer
  643.                     rows in this table than in the dot3StatsTable."
  644.         ::= { dot3 9 }
  645.  
  646.     dot3ControlEntry OBJECT-TYPE
  647.         SYNTAX      Dot3ControlEntry
  648.         MAX-ACCESS  not-accessible
  649.         STATUS      current
  650.         DESCRIPTION "An entry in the table, containing information
  651.                     about the MAC Control sublayer on a single
  652.                     ethernet-like interface."
  653.         INDEX       { dot3StatsIndex }
  654.         ::= { dot3ControlTable 1 }
  655.  
  656.     Dot3ControlEntry ::=
  657.         SEQUENCE {
  658.             dot3ControlFunctionsSupported       BITS,
  659.             dot3ControlInUnknownOpcodes         Counter32
  660.         }
  661.  
  662.     dot3ControlFunctionsSupported OBJECT-TYPE
  663.         SYNTAX      BITS {
  664.                         pause(0)   -- 802.3x flow control
  665.                     }
  666.         MAX-ACCESS  read-only
  667.         STATUS      current
  668.         DESCRIPTION "A list of the possible MAC Control functions
  669.                     implemented for this interface."
  670.         REFERENCE   "[IEEE 802.3 Std.], 30.3.3.2,
  671.                     aMACControlFunctionsSupported."
  672.         ::= { dot3ControlEntry 1 }
  673.  
  674.     dot3ControlInUnknownOpcodes OBJECT-TYPE
  675.         SYNTAX      Counter32
  676.         MAX-ACCESS  read-only
  677.         STATUS      current
  678.         DESCRIPTION "A count of MAC Control frames received on this
  679.                     interface that contain an opcode that is not
  680.                     supported by this device.
  681.  
  682.                     Discontinuities in the value of this counter can
  683.                     occur at re-initialization of the management
  684.                     system, and at other times as indicated by the
  685.                     value of ifCounterDiscontinuityTime."
  686.         REFERENCE   "[IEEE 802.3 Std.], 30.3.3.5,
  687.                     aUnsupportedOpcodesReceived"
  688.         ::= { dot3ControlEntry 2 }
  689.  
  690.     dot3PauseTable OBJECT-TYPE
  691.         SYNTAX      SEQUENCE OF Dot3PauseEntry
  692.         MAX-ACCESS  not-accessible
  693.         STATUS      current
  694.         DESCRIPTION "A table of descriptive and status information
  695.                     about the MAC Control PAUSE function on the
  696.                     ethernet-like interfaces attached to a
  697.                     particular system. There will be one row in
  698.                     this table for each ethernet-like interface in
  699.                     the system which supports the MAC Control PAUSE
  700.                     function (i.e., the 'pause' bit in the
  701.                     corresponding instance of
  702.                     dot3ControlFunctionsSupported is set).  If some,
  703.                     but not all, of the ethernet-like interfaces in
  704.                     the system implement the MAC Control PAUSE
  705.                     function (for example, if some interfaces only
  706.                     support half-duplex), there will be fewer rows
  707.                     in this table than in the dot3StatsTable."
  708.         ::= { dot3 10 }
  709.  
  710.     dot3PauseEntry OBJECT-TYPE
  711.         SYNTAX      Dot3PauseEntry
  712.         MAX-ACCESS  not-accessible
  713.         STATUS      current
  714.         DESCRIPTION "An entry in the table, containing information
  715.                     about the MAC Control PAUSE function on a single
  716.                     ethernet-like interface."
  717.         INDEX       { dot3StatsIndex }
  718.         ::= { dot3PauseTable 1 }
  719.  
  720.     Dot3PauseEntry ::=
  721.         SEQUENCE {
  722.             dot3PauseAdminMode                  INTEGER,
  723.             dot3PauseOperMode                   INTEGER,
  724.             dot3InPauseFrames                   Counter32,
  725.             dot3OutPauseFrames                  Counter32
  726.  
  727.         }
  728.  
  729.     dot3PauseAdminMode OBJECT-TYPE
  730.         SYNTAX      INTEGER {
  731.                         disabled(1),
  732.                         enabledXmit(2),
  733.                         enabledRcv(3),
  734.                         enabledXmitAndRcv(4)
  735.                     }
  736.         MAX-ACCESS  read-write
  737.         STATUS      current
  738.         DESCRIPTION "This object is used to configure the default
  739.                     administrative PAUSE mode for this interface.
  740.  
  741.                     This object represents the
  742.                     administratively-configured PAUSE mode for this
  743.                     interface.  If auto-negotiation is not enabled
  744.                     or is not implemented for the active MAU
  745.                     attached to this interface, the value of this
  746.                     object determines the operational PAUSE mode
  747.                     of the interface whenever it is operating in
  748.                     full-duplex mode.  In this case, a set to this
  749.                     object will force the interface into the
  750.                     specified mode.
  751.  
  752.                     If auto-negotiation is implemented and enabled
  753.                     for the MAU attached to this interface, the
  754.                     PAUSE mode for this interface is determined by
  755.                     auto-negotiation, and the value of this object
  756.                     denotes the mode to which the interface will
  757.                     automatically revert if/when auto-negotiation is
  758.                     later disabled.  Note that when auto-negotiation
  759.                     is running, administrative control of the PAUSE
  760.                     mode may be accomplished using the
  761.                     ifMauAutoNegCapAdvertisedBits object in the
  762.                     MAU-MIB.
  763.  
  764.                     Note that the value of this object is ignored
  765.                     when the interface is not operating in
  766.                     full-duplex mode.
  767.  
  768.                     An attempt to set this object to
  769.                     'enabledXmit(2)' or 'enabledRcv(3)' will fail
  770.                     on interfaces that do not support operation
  771.                     at greater than 100 Mb/s."
  772.         ::= { dot3PauseEntry 1 }
  773.  
  774.     dot3PauseOperMode OBJECT-TYPE
  775.         SYNTAX      INTEGER {
  776.                         disabled(1),
  777.                         enabledXmit(2),
  778.                         enabledRcv(3),
  779.                         enabledXmitAndRcv(4)
  780.                     }
  781.         MAX-ACCESS  read-only
  782.         STATUS      current
  783.         DESCRIPTION "This object reflects the PAUSE mode currently
  784.                     in use on this interface, as determined by
  785.                     either (1) the result of the auto-negotiation
  786.                     function or (2) if auto-negotiation is not
  787.                     enabled or is not implemented for the active MAU
  788.                     attached to this interface, by the value of
  789.                     dot3PauseAdminMode.  Interfaces operating at
  790.                     100 Mb/s or less will never return
  791.                     'enabledXmit(2)' or 'enabledRcv(3)'.  Interfaces
  792.                     operating in half-duplex mode will always return
  793.                     'disabled(1)'.  Interfaces on which
  794.                     auto-negotiation is enabled but not yet
  795.                     completed should return the value
  796.                     'disabled(1)'."
  797.         ::= { dot3PauseEntry 2 }
  798.  
  799.     dot3InPauseFrames OBJECT-TYPE
  800.         SYNTAX      Counter32
  801.         MAX-ACCESS  read-only
  802.         STATUS      current
  803.         DESCRIPTION "A count of MAC Control frames received on this
  804.                     interface with an opcode indicating the PAUSE
  805.                     operation.
  806.  
  807.                     This counter does not increment when the
  808.                     interface is operating in half-duplex mode.
  809.                     Discontinuities in the value of this counter can
  810.                     occur at re-initialization of the management
  811.                     system, and at other times as indicated by the
  812.                     value of ifCounterDiscontinuityTime."
  813.         REFERENCE   "[IEEE 802.3 Std.], 30.3.4.3,
  814.                     aPAUSEMACCtrlFramesReceived."
  815.         ::= { dot3PauseEntry 3 }
  816.  
  817.     dot3OutPauseFrames OBJECT-TYPE
  818.         SYNTAX      Counter32
  819.         MAX-ACCESS  read-only
  820.         STATUS      current
  821.         DESCRIPTION "A count of MAC Control frames transmitted on
  822.                     this interface with an opcode indicating the
  823.  
  824.                     PAUSE operation.
  825.  
  826.                     This counter does not increment when the
  827.                     interface is operating in half-duplex mode.
  828.  
  829.                     Discontinuities in the value of this counter can
  830.                     occur at re-initialization of the management
  831.                     system, and at other times as indicated by the
  832.                     value of ifCounterDiscontinuityTime."
  833.         REFERENCE   "[IEEE 802.3 Std.], 30.3.4.2,
  834.                     aPAUSEMACCtrlFramesTransmitted."
  835.         ::= { dot3PauseEntry 4 }
  836.  
  837.     --  802.3 Tests
  838.  
  839.     dot3Tests   OBJECT IDENTIFIER ::= { dot3 6 }
  840.  
  841.     dot3Errors  OBJECT IDENTIFIER ::= { dot3 7 }
  842.  
  843.     --  TDR Test
  844.  
  845.     dot3TestTdr OBJECT-IDENTITY
  846.         STATUS      current
  847.         DESCRIPTION "The Time-Domain Reflectometry (TDR) test is
  848.                     specific to ethernet-like interfaces of type
  849.                     10Base5 and 10Base2.  The TDR value may be
  850.                     useful in determining the approximate distance
  851.                     to a cable fault.  It is advisable to repeat
  852.                     this test to check for a consistent resulting
  853.                     TDR value, to verify that there is a fault.
  854.  
  855.                     A TDR test returns as its result the time
  856.                     interval, measured in 10 MHz ticks or 100 nsec
  857.                     units, between the start of TDR test
  858.                     transmission and the subsequent detection of a
  859.                     collision or deassertion of carrier.  On
  860.                     successful completion of a TDR test, the result
  861.                     is stored as the value of an appropriate
  862.                     instance of an appropriate vendor specific MIB
  863.                     object, and the OBJECT IDENTIFIER of that
  864.                     instance is stored in the appropriate instance
  865.                     of the appropriate test result code object
  866.                     (thereby indicating where the result has been
  867.                     stored)."
  868.         ::= { dot3Tests 1 }
  869.  
  870.     -- Loopback Test
  871.  
  872.     dot3TestLoopBack OBJECT-IDENTITY
  873.         STATUS      current
  874.         DESCRIPTION "This test configures the MAC chip and executes
  875.                     an internal loopback test of memory, data paths,
  876.                     and the MAC chip logic.  This loopback test can
  877.                     only be executed if the interface is offline.
  878.                     Once the test has completed, the MAC chip should
  879.                     be reinitialized for network operation, but it
  880.                     should remain offline.
  881.  
  882.                     If an error occurs during a test, the
  883.                     appropriate test result object will be set
  884.                     to indicate a failure.  The two OBJECT
  885.                     IDENTIFIER values dot3ErrorInitError and
  886.                     dot3ErrorLoopbackError may be used to provided
  887.                     more information as values for an appropriate
  888.                     test result code object."
  889.         ::= { dot3Tests 2 }
  890.  
  891.     dot3ErrorInitError OBJECT-IDENTITY
  892.         STATUS      current
  893.         DESCRIPTION "Couldn't initialize MAC chip for test."
  894.         ::= { dot3Errors 1 }
  895.  
  896.     dot3ErrorLoopbackError OBJECT-IDENTITY
  897.         STATUS      current
  898.         DESCRIPTION "Expected data not received (or not received
  899.                     correctly) in loopback test."
  900.         ::= { dot3Errors 2 }
  901.  
  902.     -- { dot3 8 }, the dot3ChipSets tree, is defined in [28]
  903.  
  904.     -- conformance information
  905.  
  906.     etherConformance OBJECT IDENTIFIER ::= { etherMIB 2 }
  907.  
  908.     etherGroups      OBJECT IDENTIFIER ::= { etherConformance 1 }
  909.     etherCompliances OBJECT IDENTIFIER ::= { etherConformance 2 }
  910.  
  911.     -- compliance statements
  912.  
  913.     etherCompliance MODULE-COMPLIANCE
  914.         STATUS      deprecated
  915.         DESCRIPTION "******** THIS COMPLIANCE IS DEPRECATED ********
  916.  
  917.                     The compliance statement for managed network
  918.                     entities which have ethernet-like network
  919.                     interfaces.
  920.  
  921.                     This compliance is deprecated and replaced by
  922.                     dot3Compliance."
  923.  
  924.         MODULE  -- this module
  925.             MANDATORY-GROUPS { etherStatsGroup }
  926.  
  927.             GROUP       etherCollisionTableGroup
  928.             DESCRIPTION "This group is optional. It is appropriate
  929.                         for all systems which have the necessary
  930.                         metering. Implementation in such systems is
  931.                         highly recommended."
  932.         ::= { etherCompliances 1 }
  933.  
  934.     ether100MbsCompliance MODULE-COMPLIANCE
  935.         STATUS      deprecated
  936.         DESCRIPTION "******** THIS COMPLIANCE IS DEPRECATED ********
  937.  
  938.                     The compliance statement for managed network
  939.                     entities which have 100 Mb/sec ethernet-like
  940.                     network interfaces.
  941.  
  942.                     This compliance is deprecated and replaced by
  943.                     dot3Compliance."
  944.  
  945.         MODULE  -- this module
  946.             MANDATORY-GROUPS { etherStats100MbsGroup }
  947.  
  948.             GROUP       etherCollisionTableGroup
  949.             DESCRIPTION "This group is optional. It is appropriate
  950.                         for all systems which have the necessary
  951.                         metering. Implementation in such systems is
  952.                         highly recommended."
  953.         ::= { etherCompliances 2 }
  954.  
  955.     dot3Compliance MODULE-COMPLIANCE
  956.         STATUS      current
  957.         DESCRIPTION "The compliance statement for managed network
  958.                     entities which have ethernet-like network
  959.                     interfaces."
  960.  
  961.         MODULE  -- this module
  962.             MANDATORY-GROUPS { etherStatsBaseGroup }
  963.  
  964.             GROUP       etherDuplexGroup
  965.             DESCRIPTION "This group is mandatory for all
  966.                         ethernet-like network interfaces which are
  967.                         capable of operating in full-duplex mode.
  968.                         It is highly recommended for all
  969.  
  970.                         ethernet-like network interfaces."
  971.  
  972.             GROUP       etherStatsLowSpeedGroup
  973.             DESCRIPTION "This group is mandatory for all
  974.                         ethernet-like network interfaces which are
  975.                         capable of operating at 10 Mb/s or slower in
  976.                         half-duplex mode."
  977.  
  978.             GROUP       etherStatsHighSpeedGroup
  979.             DESCRIPTION "This group is mandatory for all
  980.                         ethernet-like network interfaces which are
  981.                         capable of operating at 100 Mb/s or faster."
  982.  
  983.             GROUP       etherControlGroup
  984.             DESCRIPTION "This group is mandatory for all
  985.                         ethernet-like network interfaces that
  986.                         support the MAC Control sublayer."
  987.  
  988.             GROUP       etherControlPauseGroup
  989.             DESCRIPTION "This group is mandatory for all
  990.                         ethernet-like network interfaces that
  991.                         support the MAC Control PAUSE function."
  992.  
  993.             GROUP       etherCollisionTableGroup
  994.             DESCRIPTION "This group is optional. It is appropriate
  995.                         for all ethernet-like network interfaces
  996.                         which are capable of operating in
  997.                         half-duplex mode and have the necessary
  998.                         metering. Implementation in systems with
  999.                         such interfaces is highly recommended."
  1000.         ::= { etherCompliances 3 }
  1001.  
  1002.     -- units of conformance
  1003.  
  1004.     etherStatsGroup OBJECT-GROUP
  1005.         OBJECTS     { dot3StatsIndex,
  1006.                       dot3StatsAlignmentErrors,
  1007.                       dot3StatsFCSErrors,
  1008.                       dot3StatsSingleCollisionFrames,
  1009.                       dot3StatsMultipleCollisionFrames,
  1010.                       dot3StatsSQETestErrors,
  1011.                       dot3StatsDeferredTransmissions,
  1012.                       dot3StatsLateCollisions,
  1013.                       dot3StatsExcessiveCollisions,
  1014.                       dot3StatsInternalMacTransmitErrors,
  1015.                       dot3StatsCarrierSenseErrors,
  1016.                       dot3StatsFrameTooLongs,
  1017.                       dot3StatsInternalMacReceiveErrors,
  1018.                       dot3StatsEtherChipSet
  1019.                     }
  1020.         STATUS      deprecated
  1021.         DESCRIPTION "********* THIS GROUP IS DEPRECATED **********
  1022.  
  1023.                     A collection of objects providing information
  1024.                     applicable to all ethernet-like network
  1025.                     interfaces.
  1026.  
  1027.                     This object group has been deprecated and
  1028.                     replaced by etherStatsBaseGroup and
  1029.                     etherStatsLowSpeedGroup."
  1030.         ::= { etherGroups 1 }
  1031.  
  1032.     etherCollisionTableGroup OBJECT-GROUP
  1033.         OBJECTS     { dot3CollFrequencies
  1034.                     }
  1035.         STATUS      current
  1036.         DESCRIPTION "A collection of objects providing a histogram
  1037.                     of packets successfully transmitted after
  1038.                     experiencing exactly N collisions."
  1039.         ::= { etherGroups 2 }
  1040.  
  1041.     etherStats100MbsGroup OBJECT-GROUP
  1042.         OBJECTS     { dot3StatsIndex,
  1043.                       dot3StatsAlignmentErrors,
  1044.                       dot3StatsFCSErrors,
  1045.                       dot3StatsSingleCollisionFrames,
  1046.                       dot3StatsMultipleCollisionFrames,
  1047.                       dot3StatsDeferredTransmissions,
  1048.                       dot3StatsLateCollisions,
  1049.                       dot3StatsExcessiveCollisions,
  1050.                       dot3StatsInternalMacTransmitErrors,
  1051.                       dot3StatsCarrierSenseErrors,
  1052.                       dot3StatsFrameTooLongs,
  1053.                       dot3StatsInternalMacReceiveErrors,
  1054.                       dot3StatsEtherChipSet,
  1055.                       dot3StatsSymbolErrors
  1056.                     }
  1057.         STATUS      deprecated
  1058.         DESCRIPTION "********* THIS GROUP IS DEPRECATED **********
  1059.  
  1060.                     A collection of objects providing information
  1061.                     applicable to 100 Mb/sec ethernet-like network
  1062.                     interfaces.
  1063.  
  1064.                     This object group has been deprecated and
  1065.  
  1066.                     replaced by etherStatsBaseGroup and
  1067.                     etherStatsHighSpeedGroup."
  1068.         ::= { etherGroups 3 }
  1069.  
  1070.     etherStatsBaseGroup OBJECT-GROUP
  1071.         OBJECTS     { dot3StatsIndex,
  1072.                       dot3StatsAlignmentErrors,
  1073.                       dot3StatsFCSErrors,
  1074.                       dot3StatsSingleCollisionFrames,
  1075.                       dot3StatsMultipleCollisionFrames,
  1076.                       dot3StatsDeferredTransmissions,
  1077.                       dot3StatsLateCollisions,
  1078.                       dot3StatsExcessiveCollisions,
  1079.                       dot3StatsInternalMacTransmitErrors,
  1080.                       dot3StatsCarrierSenseErrors,
  1081.                       dot3StatsFrameTooLongs,
  1082.                       dot3StatsInternalMacReceiveErrors
  1083.                     }
  1084.         STATUS      current
  1085.         DESCRIPTION "A collection of objects providing information
  1086.                     applicable to all ethernet-like network
  1087.                     interfaces."
  1088.         ::= { etherGroups 4 }
  1089.  
  1090.     etherStatsLowSpeedGroup OBJECT-GROUP
  1091.         OBJECTS     { dot3StatsSQETestErrors }
  1092.         STATUS      current
  1093.         DESCRIPTION "A collection of objects providing information
  1094.                     applicable to ethernet-like network interfaces
  1095.                     capable of operating at 10 Mb/s or slower in
  1096.                     half-duplex mode."
  1097.         ::= { etherGroups 5 }
  1098.  
  1099.     etherStatsHighSpeedGroup OBJECT-GROUP
  1100.         OBJECTS     { dot3StatsSymbolErrors }
  1101.         STATUS      current
  1102.         DESCRIPTION "A collection of objects providing information
  1103.                     applicable to ethernet-like network interfaces
  1104.                     capable of operating at 100 Mb/s or faster."
  1105.         ::= { etherGroups 6 }
  1106.  
  1107.     etherDuplexGroup OBJECT-GROUP
  1108.         OBJECTS     { dot3StatsDuplexStatus }
  1109.         STATUS      current
  1110.         DESCRIPTION "A collection of objects providing information
  1111.                     about the duplex mode of an ethernet-like
  1112.                     network interface."
  1113.         ::= { etherGroups 7 }
  1114.  
  1115.     etherControlGroup OBJECT-GROUP
  1116.         OBJECTS     { dot3ControlFunctionsSupported,
  1117.                       dot3ControlInUnknownOpcodes
  1118.                     }
  1119.         STATUS      current
  1120.         DESCRIPTION "A collection of objects providing information
  1121.                     about the MAC Control sublayer on ethernet-like
  1122.                     network interfaces."
  1123.         ::= { etherGroups 8 }
  1124.  
  1125.     etherControlPauseGroup OBJECT-GROUP
  1126.         OBJECTS     { dot3PauseAdminMode,
  1127.                       dot3PauseOperMode,
  1128.                       dot3InPauseFrames,
  1129.                       dot3OutPauseFrames
  1130.                     }
  1131.         STATUS      current
  1132.         DESCRIPTION "A collection of objects providing information
  1133.                     about and control of the MAC Control PAUSE
  1134.                     function on ethernet-like network interfaces."
  1135.         ::= { etherGroups 9 }
  1136.  
  1137. END
  1138.